home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Synth / PADnote.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  3KB  |  107 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   PADnote.h - The "pad" synthesizer
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20. */
  21. #ifndef PAD_NOTE_H
  22. #define PAD_NOTE_H
  23.  
  24. #include "../globals.h"
  25. #include "../Params/PADnoteParameters.h"
  26. #include "../Params/Controller.h"
  27. #include "Envelope.h"
  28. #include "LFO.h"
  29. #include "../DSP/Filter.h"
  30. #include "../Params/Controller.h"
  31.  
  32. class PADnote{
  33.     public:
  34.     PADnote(PADnoteParameters *parameters, Controller *ctl_,REALTYPE freq, REALTYPE velocity, int portamento_, int midinote);
  35.     ~PADnote();
  36.     
  37.         int noteout(REALTYPE *outl,REALTYPE *outr); 
  38.     int finished();
  39.     void relasekey();
  40.     
  41.     int ready;
  42.         
  43.     private:
  44.     void fadein(REALTYPE *smps);
  45.     void computecurrentparameters();
  46.     bool finished_;
  47.     PADnoteParameters *pars;
  48.     
  49.     int poshi_l,poshi_r;
  50.     REALTYPE poslo;
  51.     
  52.     REALTYPE basefreq;
  53.     bool firsttime,released;
  54.     
  55.     int nsample,portamento;
  56.  
  57.         int Compute_Linear(REALTYPE *outl,REALTYPE *outr,int freqhi,REALTYPE freqlo); 
  58.         int Compute_Cubic(REALTYPE *outl,REALTYPE *outr,int freqhi,REALTYPE freqlo); 
  59.  
  60.  
  61.     struct{
  62.             /******************************************
  63.         *     FREQUENCY GLOBAL PARAMETERS        *
  64.         ******************************************/
  65.         REALTYPE Detune;//cents
  66.  
  67.         Envelope *FreqEnvelope;
  68.         LFO *FreqLfo;
  69.  
  70.        /********************************************
  71.         *     AMPLITUDE GLOBAL PARAMETERS          *
  72.         ********************************************/
  73.         REALTYPE Volume;// [ 0 .. 1 ]
  74.  
  75.         REALTYPE Panning;// [ 0 .. 1 ]
  76.  
  77.         Envelope *AmpEnvelope;
  78.         LFO *AmpLfo;   
  79.     
  80.         struct {
  81.         int Enabled;
  82.         REALTYPE initialvalue,dt,t;
  83.         } Punch;
  84.  
  85.            /******************************************
  86.         *        FILTER GLOBAL PARAMETERS        *
  87.         ******************************************/
  88.         Filter *GlobalFilterL,*GlobalFilterR;
  89.  
  90.         REALTYPE FilterCenterPitch;//octaves
  91.         REALTYPE FilterQ;
  92.         REALTYPE FilterFreqTracking;
  93.     
  94.         Envelope *FilterEnvelope;
  95.     
  96.         LFO *FilterLfo;
  97.     } NoteGlobalPar;  
  98.  
  99.     
  100.     REALTYPE globaloldamplitude,globalnewamplitude,velocity,realfreq;
  101.     REALTYPE *tmpwave;
  102.     Controller *ctl;
  103. };
  104.  
  105.  
  106. #endif
  107.